home *** CD-ROM | disk | FTP | other *** search
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'Corel Corporation',
- 'Copyright': u'Copyright (c) 2004 Corel Corporation All rights reserved.',
- 'Description': u'',
- 'Host': u'Paint Shop Pro 9',
- 'Host Version': u'9.00'
- }
-
- def Preset_RadialBlur():
- return {
- 'RadialBlurType': App.Constants.RadialBlurType.Spin,
- 'Strength': 2,
- 'TwirlDegrees': 0,
- 'CenterX': 0,
- 'CenterY': 0,
- 'Aperture': 0,
- 'Aspect': 1,
- 'GeneralSettings': {
- 'ExecutionMode': App.Constants.ExecutionMode.Default,
- 'DialogPlacement': {
- 'ShowMaximized': False,
- 'Rect': ((0,0), 0, 0)
- },
- 'PreviewVisible': True,
- 'AutoProof': False,
- 'AutoActionMode': App.Constants.AutoActionMode.Match
- }
- }
-
- def Do(Environment):
- # RadialBlur
- App.Do( Environment, 'RadialBlur', Preset_RadialBlur())
-
-